From f7052bb4dca15df17523e195969a5be2e7055480 Mon Sep 17 00:00:00 2001 From: Roger Pau Monne Date: Thu, 18 Aug 2016 11:10:44 +0200 Subject: [PATCH] tools/xenalyze: append argp LD flags if needed MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This is a side-effect of commit c36e1c, which currently prevents compiling xenalyze with libcs that don't have argp built-in. Signed-off-by: Roger Pau Monné Acked-by: George Dunlap Acked-by: Wei Liu --- tools/xentrace/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/xentrace/Makefile b/tools/xentrace/Makefile index a85ed33406..c8c36a8c4e 100644 --- a/tools/xentrace/Makefile +++ b/tools/xentrace/Makefile @@ -50,7 +50,7 @@ xentrace_setsize: setsize.o $(CC) $(LDFLAGS) -o $@ $< $(LDLIBS) $(APPEND_LDFLAGS) xenalyze: xenalyze.o mread.o - $(CC) $(LDFLAGS) -o $@ $^ $(APPEND_LDFLAGS) + $(CC) $(LDFLAGS) -o $@ $^ $(ARGP_LDFLAGS) $(APPEND_LDFLAGS) -include $(DEPS) -- 2.30.2